home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gxclfile.c < prev    next >
C/C++ Source or Header  |  1997-05-19  |  4KB  |  141 lines

  1. /* Copyright (C) 1995, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gxclfile.c */
  20. /* File-based command list implementation */
  21. #include "stdio_.h"
  22. #include "string_.h"
  23. #include "gserror.h"
  24. #include "gserrors.h"
  25. #include "gsmemory.h"
  26. #include "gp.h"
  27. #include "gxclio.h"
  28.  
  29. /* This is an implementation of the command list I/O interface */
  30. /* that uses the file system for storage. */
  31.  
  32. /* ------ Open/close/unlink ------ */
  33.  
  34. int
  35. clist_fopen(char *fname, const char *fmode, clist_file_ptr *pcf,
  36.   gs_memory_t *mem, bool ok_to_compress)
  37. {    if ( *fname == 0 )
  38.       { if ( fmode[0] == 'r' )
  39.           return_error(gs_error_invalidfileaccess);
  40.         *pcf =
  41.           (clist_file_ptr)gp_open_scratch_file(gp_scratch_file_name_prefix,
  42.                            fname, fmode);
  43.       }
  44.     else
  45.       *pcf = gp_fopen(fname, fmode);
  46.     if ( *pcf == NULL )
  47.       { eprintf1("Could not open the scratch file %s.\n", fname);
  48.         return_error(gs_error_invalidfileaccess);
  49.       }
  50.     return 0;
  51. }
  52.  
  53. int
  54. clist_fclose(clist_file_ptr cf, const char *fname, bool delete)
  55. {    return (fclose((FILE *)cf) != 0 ? gs_note_error(gs_error_ioerror) :
  56.         delete ? clist_unlink(fname) :
  57.         0);
  58. }
  59.  
  60. int
  61. clist_unlink(const char *fname)
  62. {    return (unlink(fname) != 0 ? gs_note_error(gs_error_ioerror) : 0);
  63. }
  64.  
  65. /* ------ Writing ------ */
  66.  
  67. long
  68. clist_space_available(long requested)
  69. {    return requested;
  70. }
  71.  
  72. int
  73. clist_fwrite_chars(const void *data, uint len, clist_file_ptr cf)
  74. {    return fwrite(data, 1, len, (FILE *)cf);
  75. }
  76.  
  77. /* ------ Reading ------ */
  78.  
  79. int
  80. clist_fread_chars(void *data, uint len, clist_file_ptr cf)
  81. {    FILE *f = (FILE *)cf;
  82.     byte *str = data;
  83.  
  84.     /* The typical implementation of fread */
  85.     /* is extremely inefficient for small counts, */
  86.     /* so we just use straight-line code instead. */
  87.     switch ( len )
  88.        {
  89.     default: return fread(str, 1, len, f);
  90.     case 8: *str++ = (byte)getc(f);
  91.     case 7: *str++ = (byte)getc(f);
  92.     case 6: *str++ = (byte)getc(f);
  93.     case 5: *str++ = (byte)getc(f);
  94.     case 4: *str++ = (byte)getc(f);
  95.     case 3: *str++ = (byte)getc(f);
  96.     case 2: *str++ = (byte)getc(f);
  97.     case 1: *str = (byte)getc(f);
  98.        }
  99.     return len;
  100. }
  101.  
  102. /* ------ Position/status ------ */
  103.  
  104. int
  105. clist_ferror_code(clist_file_ptr cf)
  106. {    return (ferror((FILE *)cf) ? gs_error_ioerror : 0);
  107. }
  108.  
  109. long
  110. clist_ftell(clist_file_ptr cf)
  111. {    return ftell((FILE *)cf);
  112. }
  113.  
  114. void
  115. clist_rewind(clist_file_ptr cf, bool discard_data, const char *fname)
  116. {    FILE *f = (FILE *)cf;
  117.  
  118.     if ( discard_data ) {
  119.       /*
  120.        * The ANSI C stdio specification provides no operation for
  121.        * truncating a file at a given position, or even just for
  122.        * deleting its contents; we have to use a bizarre workaround to
  123.        * get the same effect.
  124.        */
  125.       char fmode[4];
  126.  
  127.       /* Opening with "w" mode deletes the contents when closing. */
  128.       freopen(fname, gp_fmode_wb, f);
  129.       strcpy(fmode, "w+");
  130.       strcat(fmode, gp_fmode_binary_suffix);
  131.       freopen(fname, fmode, f);
  132.     } else {
  133.       rewind(f);
  134.     }
  135. }
  136.  
  137. int
  138. clist_fseek(clist_file_ptr cf, long offset, int mode, const char *ignore_fname)
  139. {    return fseek((FILE *)cf, offset, mode);
  140. }
  141.